home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / honeytrouble.swf / scripts / DefineSprite_228_BOX_x / frame_3 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  280 b   |  15 lines

  1. _root.once_time = 1;
  2. this.count_num = 250;
  3. this.onEnterFrame = function()
  4. {
  5.    this.count_num = this.count_num - 1;
  6.    if(this.count_num <= 0)
  7.    {
  8.       delete this.onEnterFrame;
  9.       if(_root.pop_.length > 0)
  10.       {
  11.          this.gotoAndStop(2);
  12.       }
  13.    }
  14. };
  15.